home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Online / httpproxy / testINet.rexx < prev    next >
OS/2 REXX Batch file  |  1996-08-20  |  298b  |  17 lines

  1. /* Test INet installation */
  2. /* no tests so far */
  3.  
  4. /* open result file, initialize */
  5.  
  6. parse Arg a
  7. address command
  8. retval = 0
  9. a = d2c(0 || a)
  10.  
  11. if (open("r","env:_httpproxy_results","WRITE") ~= 1) then
  12.     exit 20
  13.  
  14. call writeln("r","no tests for INet implemented right now")
  15. call close("r")
  16. exit 0
  17.